@import url('https://fonts.googleapis.com/css2?family=Karla:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.cdnfonts.com/css/vt323');
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "courier new";
}
:root {
    --bg-color: #0a0e17;
    --bg-secondary: #111827;
    --text-color: #e2e8f0;
    --text-secondary: #94a3b8;
    --accent-green: #4ade80;
    --accent-red: #f87171;
    --accent-blue: #38bdf8;
    --card-bg: rgba(17, 24, 39, 0.7);
    --border-color: rgba(255, 255, 255, 0.1);
}

/* Header */
#year-selector {
  display: flex;
  background-color: var(--bg-secondary);
  justify-content: center;
  gap: 2rem;
  margin: 1.5rem;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  padding: 0.25rem 0;
}

#year-selector li {
  list-style: none;
  font-size: 1.3rem;
}

#year-selector a {
text-decoration: none;
}

#year-selector a:hover {
 color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 5px;
}

#year-selector a.active {
  background-color: var(--accent-green);
  color: var(--bg-color);
  border-radius: 5px;
  padding: 0 5px;
}

body{
  color: #fff;
  position: relative;
}
.container{
  width: 100%;
  padding-top: 35px;
  padding-left: 8%;
  padding-right: 8%;
}
/* Navbar styles */
.navbar {
  background-color: #333;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2em 20px;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding-left: 8%;
  padding-right: 8%;
  
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  max-height: 150px;
}

.nav-links {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
}

.nav-links li {
  margin-left: 20px;
}

.nav-links a {
  text-decoration: none;
  color: white;
  padding: 10px 15px;
  border-radius: 5px;
  font-weight: semi-bold;
  font-size: large;
  transition: background-color 0.3s;
}

/* Footer styles */
footer#kajene {
  background-color: #333;
  color: #fff;
  text-align: center;
  padding: 10px;
  width: 100%;
}

/* Footer content */
footer#kajene .footer-content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  padding: 1em 0 0 0;
}

footer#kajene img {
  max-width: 15em;
  margin: 2em;
}


span{
  color: #ff1818;
  font-family: "VT323", monospace;
}
nav ul li{
  display: inline-block;
  list-style: none;
  margin: 10px 15px;
}
nav ul li a{
  text-decoration: none;
  transition: 0.5s;
}
nav ul li a:hover{
  color: #f9004d;
  font-weight: bold;
}
.login{
  text-decoration: none;
  margin-right: 15px;
  font-size: 18px;
}
.btn{
  background: #000;
  border-radius: 6px;
  padding: 9px 25px;
  text-decoration: none;
  transition: 0.5s;
  font-size: 18px;
}

/* Content styles */
.content {
  background-color: rgba(0, 0, 0, 0.4); /* Black transparent background at 50% */
  padding: 2em;
  color: #fff;
  text-align: left;
  text-justify: inter-word;
  max-width: 100%;
  font-size: large;
  margin: 0 0 3em 0;
}

.content h2{
  font-size: 5em;
  text-align: center;
  font-family: "VT323", monospace;
  font-weight: 500;
}

.content p {
  margin-bottom: 20px; /* Increase space between paragraphs */
}

.content ul {
  list-style: none;
  padding-left: 20px; /* Increase left padding for more indentation */
}

.content ul li {
  margin-bottom: 15px; /* Increase space between list items */
  padding-left: 20px; /* Additional padding for more indentation */
  position: relative;
}

.content ul li:before {
  content: "✔"; /* Change list symbol to a checkmark */
  position: absolute;
  left: 0;
  color: #5DFF00; /* Optional: change color of the checkmark */
}

a{
  color: #fff;
}

.image-container {
  padding: 20%;
  position: relative;
  width: 50%; /* Adjust as needed */
  margin: 0 auto; /* Center the container */
}

.main-image, .hacked-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto; /* Maintain aspect ratio */
  transition: opacity 0.5s ease-in-out;
  filter: drop-shadow(0 0 25px rgba(19, 255, 19, 0.4)); /* Green glow effect */
}

.hacked-image {
  opacity: 0;
}

.image-link:hover .main-image {
  opacity: 0;
}

.image-link:hover .hacked-image {
  opacity: 1;
}

.PDF{
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2em;
  font-weight: bold;
  color: red;
}

#particles-js {
  width: 100%;
  position: relative;
}
.particles-js-canvas-el {
	background: #10251E;
    position: fixed;
    top: 0;
    z-index: -1;
}

#block2{
  display: flex;
  justify-content: center;
  align-items: center;
  padding-left: 10%;
}

.aboutContent{
  text-align: justify;
  text-justify: inter-word;
  max-width: 1100px;
}

.aboutContent h2{
  font-size: 5empx
}
.aboutContent p{
  margin-top: 10px;
  line-height: 25px;
}

#signup-note{
  color: #f9004d;
}
#signup-discord-link:hover{
  color: #f9004d;
}

/* Style for the table */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px auto;
  font-weight: bold;
}

th, td {
  padding: 10px;
  border: 1px solid #ccc;
  text-align: center;
}

th {
  background-color: #333;
  color: #fff;
}

.responsive-list {
  display: none;
}


/* Responsive styles */
@media (max-width: 768px) {
  table {
    display: none;
  }

  .responsive-list {
    display: block;
    margin: 20px auto;
    padding: 0;
    list-style: none;
  }

  .responsive-list li {
    margin: 10px 0;
    padding: 10px;

  }


  .responsive-list li span {
    display: block;
    font-weight: bold;
  }

  .responsive-list li::before {
    content: "•"; /* Custom bullet symbol */
  }
}

/* Footer styles */
footer#kajene {
  background-color: #333;
  color: #fff;
  text-align: center;
  padding: 10px;
  width: 100%;
}

/* Footer content */
footer#kajene .footer-content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  padding: 1em 0 0 0;
}

footer#kajene img {
  max-width: 15em;
  margin: 2em; /* Add horizontal margin to create space between images */
}


/* Countdown styles */
#countdown {
  text-align: center;

  justify-content: center;
  margin: 2em 0 3em 0;
  padding: 2em;
  background-color: rgba(0, 0, 0, 0.4);
}

#countdown h2 {
  font-size: 4em;
  margin-bottom: 20px;
}

#countdown ul {
  list-style: none;
  padding: 0;
}

#countdown li {
  display: inline-block;
  font-size: 2.5em;
  margin: 20px 20px;
}

#countdown li span {
  display: block;
  font-size: 3em;
}

/*************** Mobile Styles ***************/
/* Mobile Styles */
@media screen and (max-width: 768px) {
  body {
    font-size: 16px; /* Adjust font size for better readability on mobile */
  }

  .navbar {
    flex-direction: column;
    align-items: flex-start;
    padding: 10px;
  }

  .logo {
    width: 100%;
    justify-content: center;
    margin-bottom: 10px;
  }

  .logo img {
    max-width: 100%;
    height: auto;
  }

  .nav-links {
    width: 100%;
    justify-content: space-around;
  }

  .nav-links li {
    margin: 10px 0;
  }
}

@media all and (max-width: 768px) {
  h1 {
    font-size: calc(1.5rem * var(--smaller));
  }
  
  li {
    font-size: calc(1.125rem * var(--smaller));
  }
  
  li span {
    font-size: calc(3.375rem * var(--smaller));
  }

  body {
    font-size: 16px; /* Adjust font size for better readability on mobile */
  }

  .container {
    padding: 0px; /* Add some padding for better spacing on mobile */
    
  }

  .logo {
    text-align: center; /* Center the logo on mobile */
  }

  .logo a {
    font-size: 40px; /* Reduce logo font size on mobile */
  }

  nav ul {
    text-align: center; /* Center the navigation menu on mobile */
    padding-top: 20px; /* Add spacing between logo and menu */
  }

  nav ul li {
    display: block; /* Make menu items stack vertically */
    margin: 10px 0; /* Add spacing between menu items */
  }

  .content {
    text-align: justify;
    text-justify: inter-word;
    margin-top: 10%;
    max-width: 100%; /* Make content width smaller on mobile */
    margin-bottom: 4em;
  }
  #thankyounote {
    text-align: center;
    
    text-justify: inter-word;
    margin-top: 10%;
    max-width: 100%; /* Make content width smaller on mobile */
    margin-bottom: 4em;
  }
  .content h2 {
    font-size: 40px; /* Reduce heading font size on mobile */
  }

  #countdown h2 {
    font-size: 40px;
    margin-bottom: 20px;
  }
  

  /* Adjust countdown font size on mobile */
  #countdown li {
    font-size: 1.5em;
  }

  /* Adjust countdown digit font size on mobile */
  #countdown li span {
    font-size: 3.5rem;
  }

  /* Timer styles */
  .timer {
    text-align: center;
    margin: 20px auto;
    padding: 20px;
    width: calc(100% - 16%);
  }

  .timer h2 {
    font-size: 3em;
    margin-bottom: 20px;
  }

  .timer li {
    display: inline-block;
    font-size: 1.5em;
    margin: 10px 20px;
  }

  .timer li span {
    display: block;
    font-size: 3em;
  }

  .timer {
    width: calc(100% - 32px);
    padding: 10px;
  }

  .timer h2 {
    font-size: 2em;
  }

  .timer li {
    font-size: 1.2em;
    margin: 5px 10px;
  }

  .timer li span {
    font-size: 2.5em;
  }

  .image-container {
    width: 80%; /* Adjust as needed for tablets */
    padding: 40%;
  }
}

@media (min-height: 1100px) {
  body {
    width: 100%;
    height: 100vh;
    margin: 0px;
  }
}